/* header */
header {
    margin: auto;
    max-width: 1920px;
    height: 115px;
    border-bottom: 1px solid #dbdbdb;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

.headerMid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 1250px;
    height: 100%;
}

.headerMid .left {
    display: flex;
    align-items: center;
}

.headerMid .left img {
    width: 91px;
    height: 91px;
}

.headerMid .left h1 {
    margin-left: 15px;
    font-size: 34px;
    font-weight: 400;
    color: #008889;
    letter-spacing: 1px;
}

.headerMid .right {
    position: relative;
    width: 394px;
    height: 48px;
    box-sizing: border-box;
}

.headerMid .right .text {
    padding-left: 15px;
    padding-right: 107px;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    outline: none;
    border: none;
    border: 1px solid #008889;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei';
    font-size: 16px;
}

.headerMid .right .search {
    position: absolute;
    right: 0;
    top: 0;
    width: 92px;
    height: 100%;
    background-color: #008889;
    outline: none;
    border: none;
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
    cursor: pointer;
}

.headerMid .right img {
    position: absolute;
    right: 30px;
    top: 11px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* nav */
nav {
    margin: auto;
    max-width: 1920px;
    height: 115px;
    height: 60px;
    background-color: #f8f8f8;
}

.navMid {
    margin: auto;
    max-width: 1250px;
    height: 100%;
}

nav ul {
    display: flex;
    padding: 16px 0;
}

nav li {
    padding: 0 27px;
    border-right: 1px solid #ddd;
    height: 28px;
}

nav li:first-child {
    padding-left: 0;
}

nav li:last-child {
    border-right: 0;
}

nav li a {
    font-size: 18px;
    color: #585858 !important;
}

nav li a:hover {
    color: #008889 !important;
}